:root {
  --primary: #2f855a;
  --primary-dark: #22543d;
  --accent: #38b2ac;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-card: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.4);
  --text-dark: #2d3748;
  --text-light: #718096;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f7fafc;
  color: var(--text-dark);
  overflow-x: hidden;
}


/*  Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/*  Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
  color: #48bb78;
  background: linear-gradient(120deg, #48bb78 0%, #81e6d9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #276749 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/*  Stats Section */
.stats {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.stats h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.stats p {
  color: var(--text-light);
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.count {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

.unit {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

/*  Diagram Section (CAREFULLY POSITIONED DO NOT TOUCH specially ANAND ) */
.value {
  padding: 50px;
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

.diagram {
  position: relative;
  width: 600px;
  height: 600px;
  margin: auto;
}

.diagram-title {
  text-align: center;
  margin-bottom: 20px;
}

.bg {
  width: 100%;
  height: 100%;
  display: block;
}

/* common label style */
.label {
  position: absolute;
  background: var(--glass-card);
  color: rgba(0, 0, 0, 0.7);
  padding: 6px 14px;
  border-radius: 18px;
  font-size: 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.6s ease,
    background 0.6s ease;
  cursor: pointer;
}

.label:hover {
  transform: scale(1.1);
  background: linear-gradient(120deg, #48bb78 0%, #81e6d9 100%);
}

.l1 {
  top: 30px;
  left: -40px;
}

/* Yield & quality improvement */
.l2 {
  top: 160px;
  left: -150px;
}

/* Crop loss management */
.l3 {
  top: 325px;
  left: -240px;
}

/* Manage market or price volatility */
.l4 {
  top: 500px;
  left: -10px;
}

/* Resilient sourcing */
.l5 {
  top: -15px;
  right: 100px;
}

/* Ensure regenerative & sustainable practices */
.l6 {
  top: 160px;
  right: -270px;
}

/* Ensure traceability, certification & compliance */
.l7 {
  top: 330px;
  right: -180px;
}

/* Building climate resilience */
.l8 {
  top: 570px;
  right: -20px;
}

/* Ensure risk coverage & access to finance */
.l9 {
  top: 40px;
  left: 450px;
}

/* Chain efficiency */
.l10 {
  top: 570px;
  left: 150px;
}

/* Surety of supply */
.l11 {
  top: 500px;
  left: 490px;
}

/* Market Expansion */

.value_label_png {
  width: 22px;
  height: 22px;
  object-fit: contain;
}


.why-choose-us {
  padding: 80px 5%;
  background: var(--bg-color, #f7fafc);
  text-align: center;
}

.jury-badge {
  display: inline-block;
  background: rgba(47, 133, 90, 0.1);
  color: var(--primary, #2f855a);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(47, 133, 90, 0.3);
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  color: var(--primary-dark, #22543d);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light, #718096);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.table-container {
  max-width: 1050px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--glass-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.6));
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 25px;
  border-bottom: 1px solid #edf2f7;
  font-size: 15.5px;
  transition: all 0.2s ease;
}


.comparison-table th {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #cbd5e0;
}


.feature-name {
  font-weight: 600;
  color: var(--text-dark, #2d3748);
}

.feature-name i {
  color: var(--text-light, #718096);
  width: 25px;
  text-align: center;
  margin-right: 8px;
}


.traditional-col {
  color: #a0aec0;
}

.bad-icon {
  color: #fc8181;
  margin-right: 8px;
  font-size: 14px;
}

/* Agroguard Highlight Column */
.comparison-table .highlight-col {
  background: rgba(47, 133, 90, 0.03);
  color: var(--primary-dark, #22543d);
  border-left: 2px solid var(--primary, #2f855a);
  border-right: 2px solid var(--primary, #2f855a);
}

.comparison-table th.highlight-col {
  background: linear-gradient(135deg, var(--primary) 0%, #276749 100%);
  color: #ffffff;
  border-radius: 24px 24px 0 0;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(47, 133, 90, 0.3);
}

.good-icon {
  color: var(--primary, #2f855a);
  margin-right: 8px;
  font-size: 16px;
}


.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Challenges Section */
.challenges {
  padding: 80px 5%;
  background: var(--glass-card);
}

.challenges h2 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.challenge-card {
  background: var(--glass-card);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--accent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.challenge-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.challenge-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.challenge-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/*scrolling to top button*/
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  z-index: 9999;

  background: rgba(0, 0, 0, 0.00000003);
}

#scrollTopBtn img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

/*footer*/
.site-footer {
  background: #1a202c;
  color: #cbd5e0;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.footer-about p {
  line-height: 1.6;
  font-size: 14px;
}

.footer-links a {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #38b2ac;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* TEAM */
.footer-team .person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-team span {
  font-size: 14px;
}

.footer-team a {
  color: #cbd5e0;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-team a:hover {
  color: #38b2ac;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #2d3748;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #a0aec0;
}